home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2006 May
/
PCWMAY06.iso
/
Software
/
Freeware
/
First Page 2006 3.00
/
fp2006-final-3.00-setup.exe
/
{app}
/
Iscripts
/
Forms Misc
/
max-entry.izs
< prev
next >
Wrap
Text File
|
2005-09-28
|
2KB
|
92 lines
<!NOWIZARD>
<!TITLE>Max Entry
<!/TITLE>
<!DESCRIPTION>Make sure your visitor doesn't exceed the maximum number of characters that you want to accept in a form.<!/DESCRIPTION>
<!CATEGORY>Forms<!/CATEGORY>
<!SCRIPT>
<!-- START OF SCRIPT -->
<!-- HOW TO INSTALL MAX ENTRY:
1. Copy code into the HEAD section of document
2. Put last coding into the BODY section of document -->
<!-- STEP ONE: Add code into HEAD section of document -->
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function checkchars(form) {
var max=15;
if (form.chars.value.length > max) {
alert("Please do not enter more than 15 characters. Please shorten your entry and submit again.");
return false;
}
else return true;
}
// End -->
</script>
<!-- STEP TWO: Add code into BODY section of document -->
<center>
<form onsubmit="return checkchars(this)">
Please type 15 characters or less.<br>
<textarea rows=5 cols=30 name=chars wrap=virtual></textarea>
<br><input type=submit value="Submit!">
</form>
</center>
<!-- END OF SCRIPT -->
<!/SCRIPT>
<!PREVIEW>
<!-- START OF SCRIPT -->
<!-- HOW TO INSTALL MAX ENTRY:
1. Copy code into the HEAD section of document
2. Put last coding into the BODY section of document -->
<!-- STEP ONE: Add code into HEAD section of document -->
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function checkchars(form) {
var max=15;
if (form.chars.value.length > max) {
alert("Please do not enter more than 15 characters. Please shorten your entry and submit again.");
return false;
}
else return true;
}
// End -->
</script>
<!-- STEP TWO: Add code into BODY section of document -->
<center>
<form onsubmit="return checkchars(this)">
Please type 15 characters or less.<br>
<textarea rows=5 cols=30 name=chars wrap=virtual></textarea>
<br><input type=submit value="Submit!">
</form>
</center>
<!-- END OF SCRIPT -->
<!/PREVIEW>
<!RELATED>NONE<!/RELATED>